home *** CD-ROM | disk | FTP | other *** search
/ Tabloid Beauties (1996 Edition) / Tabloid Beauties - 1996 Edition.iso / mac / DATA / KIRSTEN.DIR / 00279_Script_279 < prev    next >
Text File  |  1996-03-29  |  549b  |  21 lines

  1. on exitFrame
  2.   put random(100) into x
  3.   if x < 80 then
  4.     put the pathname into temp
  5.     if the machinetype <> 256 then
  6.       put Temp & "SOUNDS:024.mov" into Fname
  7.     else
  8.       put Temp & "SOUNDS\024.mov" into Fname
  9.     end if
  10.     set the filename of cast "QT.MOV" to FName
  11.     exit
  12.   else
  13.     put the pathname into temp
  14.     if the machinetype <> 256 then
  15.       put Temp & "SOUNDS:025.mov" into Fname
  16.     else
  17.       put Temp & "SOUNDS\025.mov" into Fname
  18.     end if
  19.     set the filename of cast "QT.MOV" to FName
  20.   end if
  21. end